home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / wintech1.zip / LEVARO.ZIP / TOOLBAR.H < prev    next >
Text File  |  1991-09-27  |  1KB  |  37 lines

  1. /*
  2.  * TOOLBAR.H -- Tool bar custom control header file
  3.  */
  4.  
  5. #define TB_TOOLBAR    (WM_USER + 0x0BC0)           /* Messages */
  6. #define TB_CLICKED    (WM_USER + 0x0BC1)
  7. #define TB_SETSELECT  (WM_USER + 0x0BC2)
  8. #define TB_GETSELECT  (WM_USER + 0x0BC3)
  9.  
  10. /* Tool Bar access macros ............................................ */
  11.  
  12. #define TB_WINEXTRA    4
  13.  
  14. #define TB_STATE    0
  15. #define TB_BITMAP    2
  16.  
  17. #define GET_TBSTATE          GetWindowWord((hwnd), TB_STATE)
  18. #define SET_TBSTATE(x)          SetWindowWord((hwnd), TB_STATE, (x))
  19. #define GET_TBBITMAP          GetWindowWord((hwnd), TB_BITMAP)
  20. #define SET_TBBITMAP(hwnd, x) SetWindowWord((hwnd), TB_BITMAP, (x))
  21.  
  22. /* Function prototypes ............................................... */
  23.  
  24. LONG FAR PASCAL ToolBarWndFn     ( HWND, WORD, WORD, LONG );
  25. HWND FAR PASCAL CreateToolBar     ( HANDLE  hInstance,
  26.                    HWND    hWndApp,
  27.                    DWORD   dwStyle,
  28.                    int       x,
  29.                    int       y,
  30.                    int       nXUnit,
  31.                    int       nYUnit,
  32.                    int       nHoriz,
  33.                    int       nVert,
  34.                    int       nborder,
  35.                    LPSTR   lpTitle      );
  36.  
  37.